home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / bildschirmschoner / swazblanker / programmer / include / clib / swazconfig_protos.h < prev    next >
C/C++ Source or Header  |  1996-04-07  |  847b  |  37 lines

  1. #ifndef CLIB_SWAZCONFIG_PROTOS_H
  2. #define CLIB_SWAZCONFIG_PROTOS_H
  3.  
  4. /*
  5. **      $Filename: clib/swazconfig_protos.h $
  6. **      $Release: 1.0 $
  7. **      $Revision: 1.0 $
  8. **
  9. **      C prototypes.
  10. **
  11. **      (C) Copyright 1995 David Swasbrook
  12. **      All Rights Reserved
  13. */
  14.  
  15. #ifndef  EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18.  
  19. #ifndef  DOS_DOS_H
  20. #include <dos/dos.h>
  21. #endif
  22.  
  23. APTR SC_AllocConfig( void );
  24. void SC_FreeConfig( APTR );
  25.  
  26. LONG    SC_SetConfigVar( APTR, struct SC_ConfigVar *, STRPTR );
  27. LONG    SC_SetConfigVarByName( APTR, STRPTR, STRPTR );
  28. struct SC_ConfigVar *SC_FindConfigVar( APTR, STRPTR );
  29. void    SC_DeleteConfigVar( APTR, struct SC_ConfigVar * );
  30. struct SC_ConfigVar *SC_AllocConfigVar( APTR, STRPTR );
  31.  
  32. APTR    SC_ReadConfig( STRPTR, STRPTR );
  33. void    SC_WriteConfig( struct SC_Config *, STRPTR, STRPTR );
  34.  
  35.  
  36. #endif  /* CLIB_SWAZCONFIG_PROTOS_H */
  37.